home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / mditot_1 / mdichild.cab / MDIChild1Form.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-05-24  |  1.8 KB  |  59 lines

  1. VERSION 5.00
  2. Object = "{167C9DC1-D0B3-11D2-9E7C-0060B0A4C27E}#15.0#0"; "m_mdiChild32.ocx"
  3. Begin VB.Form MDIChild1Form 
  4.    Caption         =   "MDIChild in DLL"
  5.    ClientHeight    =   4860
  6.    ClientLeft      =   165
  7.    ClientTop       =   735
  8.    ClientWidth     =   7740
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   4860
  11.    ScaleWidth      =   7740
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.TextBox Text1 
  14.       BackColor       =   &H80000001&
  15.       Height          =   3165
  16.       Left            =   30
  17.       TabIndex        =   0
  18.       Top             =   60
  19.       Width           =   3555
  20.    End
  21.    Begin M_mdiChild32.mdiChildDll mdiChildDll 
  22.       Left            =   4410
  23.       Top             =   1260
  24.       _ExtentX        =   503
  25.       _ExtentY        =   476
  26.       Visible         =   -1  'True
  27.       UserSpecifiedID =   ""
  28.       Enabled         =   -1  'True
  29.    End
  30.    Begin VB.Menu ole 
  31.       Caption         =   "ole"
  32.       Begin VB.Menu per 
  33.          Caption         =   "per"
  34.       End
  35.    End
  36. Attribute VB_Name = "MDIChild1Form"
  37. Attribute VB_GlobalNameSpace = False
  38. Attribute VB_Creatable = False
  39. Attribute VB_PredeclaredId = True
  40. Attribute VB_Exposed = False
  41. '----------------------------------------------------------------------
  42. 'MDIChildTest
  43. 'Copyright (c) Millennium Software AS
  44. 'Redistribution of Code Prohibited
  45. 'Finished:    02.03.99 17:59:45
  46. 'Author:      Morten Ladstein (morten@millennium.no)
  47. 'Company:     Millennium Software AS
  48. 'Web:         http://www.millennium.no
  49. 'Description:
  50. 'Comments:
  51. '----------------------------------------------------------------------
  52. Option Explicit
  53. Private Sub Form_Resize()
  54.   Text1.Move 30, 60, Abs(Width - 180), Abs(Height - 760)
  55. End Sub
  56. Private Sub per_Click()
  57. MsgBox "per2"
  58. End Sub
  59.